(non-)interactive (non-)login shell
1 login shell
当bash以login shell形式登录的时候,bash会依次执行下列脚本,进行关键全局变量的初始化,如PATH
。
/etc/profile
~/.bash_profile
~/.bash_login
~/.profile
使用-
,-l
,--login
选项可指定以login shell的形式登录,--noprofile
选项可使bash不去执行这些脚本。
当login shell退出的时候,bash会执行如下脚本进行推出前处理:
~/.bash_logout
/etc/bash.bash_logout
2 interactive shell
使用-i
选项启动interactive shell,该类型的shell读下列脚本进行关键匿名的初始化,如alias ll='ls -l --color=auto'
~/.bashrc
初始化文件可通过--norc
选项屏蔽,或--rcfile
重新指定
3 注意
/etc/bashrc
一般会被/etc/profile
,~/.bashrc
用到,所以无论是interactive shell还是login shell,该文件的内容都会生效。
4 结论
无论interactive login shell,interactive non-login shell,non-interactive login shell,non-interactive non-login file,不同类型shell的组合其本质区别就在于初始化的脚本运行顺序不同。